home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-02
/
showbmp2.zip
/
BMPTEST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-03-28
|
481b
|
24 lines
Uses showbmp2,crt;
Begin
if Vga256exist<>true then {Does the Video Card Support 256c?}
begin
writeln('Sorry! 256c Mode Not Supported!');
halt;
end;
SetVideomode($13); {Set Video Mode to 320x200x256c}
showbmp('runset.dat',false); {Display the bitmap, change false to true
for quicker display}
repeat
until keypressed;
fadeout; {Fade the Picture}
textmode(co80); {Setup Textmode}
end.